Version

SortMergeGeneric<T>(T[],T[],IComparer<T>,Int32,Int32) Method

Sorts the passed in array based on the passed in comparer using a modified merge-sort algorithm. Optionally you can pass in a temporary array equal (or greater) in size to arr. The method will make use of that array instead of allocating one. If null is passed in, then it will allocate one. Merge sort should be used if the operation of comparing items is expensive.
Syntax
'Declaration
 
Public Overloads Shared Sub SortMergeGeneric(Of T)( _
   ByVal array() As T, _
   ByVal tempArray() As T, _
   ByVal comparer As IComparer(Of T), _
   ByVal startIndex As Integer, _
   ByVal endIndex As Integer _
) 
public static void SortMergeGeneric<T>( 
   T[] array,
   T[] tempArray,
   IComparer<T> comparer,
   int startIndex,
   int endIndex
)

Parameters

array
Array to be sorted.
tempArray
Null or a temporary array equal (or greater) in size to array.
comparer
Comparer.
startIndex
Start index in the array.
endIndex
End index in the array.

Type Parameters

T
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also